/* ================= TESTIMONIALS PAGE SPECIFIC ================= */

/* Grid Layout */
.testimonials-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card Styling */
.testi-page-card {
    padding: 40px;
    background: rgba(10, 14, 23, 0.6);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* Quote Icon in Background */
.bg-quote {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
}

.testi-page-card p {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    color: #ccc;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Reviewer Info at Bottom */
.reviewer-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    position: relative;
    z-index: 1;
}

.meta-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.meta-info span {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.stars {
    color: #f39c12;
    /* Golden Star Color */
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Hover Effect */
.testi-page-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(255, 90, 31, 0.05) 0%, #0a0e17 50%);
}

.testi-page-card:hover .bg-quote {
    color: rgba(255, 90, 31, 0.1);
    transform: scale(1.1) rotate(-10deg);
    transition: 0.5s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-page-grid {
        grid-template-columns: 1fr;
    }

    .testi-page-card {
        padding: 30px;
    }
}